home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2 - Developers' Solutions / Delphi 2 Developers' Solutions.iso / dds / chap09 / howto02 / delphi10 / cciccprf.~pa < prev    next >
Encoding:
Text File  |  1996-06-11  |  1.8 KB  |  82 lines

  1. unit Cciccprf;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, TabNotBk, StdCtrls, Buttons, ExtCtrls, ComCtrls;
  8.  
  9. type
  10.   TCCICPrefsDlg = class(TForm)
  11.     TabbedNotebook1: TTabbedNotebook;
  12.     OKBtn: TBitBtn;
  13.     CancelBtn: TBitBtn;
  14.     HelpBtn: TBitBtn;
  15.     RadioGroup1: TRadioGroup;
  16.     RadioGroup2: TRadioGroup;
  17.     RadioGroup3: TRadioGroup;
  18.     RadioGroup4: TRadioGroup;
  19.     RadioGroup5: TRadioGroup;
  20.     RadioGroup6: TRadioGroup;
  21.     Edit1: TEdit;
  22.     Label1: TLabel;
  23.     CheckBox1: TCheckBox;
  24.     RadioGroup7: TRadioGroup;
  25.     RadioGroup8: TRadioGroup;
  26.     RadioGroup9: TRadioGroup;
  27.     RadioGroup10: TRadioGroup;
  28.     CheckBox2: TCheckBox;
  29.     RadioGroup11: TRadioGroup;
  30.     RadioGroup12: TRadioGroup;
  31.     ColorDialog1: TColorDialog;
  32.     FontDialog1: TFontDialog;
  33.     Label2: TLabel;
  34.     Button1: TButton;
  35.     Button2: TButton;
  36.     RadioGroup13: TRadioGroup;
  37.     RadioGroup14: TRadioGroup;
  38.     Bevel1: TBevel;
  39.     Label3: TLabel;
  40.     Bevel2: TBevel;
  41.     Label4: TLabel;
  42.     Edit2: TEdit;
  43.     Button3: TButton;
  44.     OpenDialog1: TOpenDialog;
  45.     Label5: TLabel;
  46.     Edit4: TEdit;
  47.     Button5: TButton;
  48.     Label6: TLabel;
  49.     RadioGroup15: TRadioGroup;
  50.     Edit3: TEdit;
  51.     Button4: TButton;
  52.     RadioGroup16: TRadioGroup;
  53.     Label7: TLabel;
  54.     Edit5: TEdit;
  55.     Label8: TLabel;
  56.     Edit6: TEdit;
  57.     Button6: TButton;
  58.     Label9: TLabel;
  59.     Edit7: TEdit;
  60.     Button7: TButton;
  61.     Label10: TLabel;
  62.     Edit8: TEdit;
  63.     Button8: TButton;
  64.     Label11: TLabel;
  65.     Edit9: TEdit;
  66.     Button9: TButton;
  67.   private
  68.     { Private declarations }
  69.   public
  70.     { Public declarations }
  71.   end;
  72.  
  73. var
  74.   CCICPrefsDlg: TCCICPrefsDlg;
  75.  
  76. implementation
  77.  
  78. {$R *.DFM}
  79. uses CCICCFrm;
  80.  
  81. end.
  82.